home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htsstrings.h < prev    next >
C/C++ Source or Header  |  2004-12-11  |  4KB  |  139 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: Strings                                                */
  34. /* Author: Xavier Roche                                         */
  35. /* ------------------------------------------------------------ */
  36.  
  37. // Strings a bit safer than static buffers
  38.  
  39. #ifndef HTS_STRINGS_DEFSTATIC
  40. #define HTS_STRINGS_DEFSTATIC 
  41.  
  42. typedef struct String {
  43.   char* buff;
  44.   int len;
  45.   int capa;
  46. } String;
  47.  
  48. #define STRING_EMPTY {NULL, 0, 0}
  49. #define STRING_BLK_SIZE 256
  50. #define StringBuff(blk) ((blk).buff)
  51. #define StringLength(blk) ((blk).len)
  52. #define StringCapacity(blk) ((blk).capa)
  53. #define StringRoom(blk, size) do { \
  54.   if ((blk).len + (int)(size) + 1 > (blk).capa) { \
  55.     (blk).capa = ((blk).len + (size) + 1) * 2; \
  56.     (blk).buff = (char*) realloct((blk).buff, (blk).capa); \
  57.     assertf((blk).buff != NULL); \
  58.   } \
  59. } while(0)
  60. #define StringBuffN(blk, size) StringBuffN_(&(blk), size) 
  61. static char* StringBuffN_(String* blk, int size) {
  62.   StringRoom(*blk, (blk->len) + size);
  63.   return StringBuff(*blk);
  64. }
  65. #define StringClear(blk) do { \
  66.   StringRoom(blk, 0); \
  67.   (blk).buff[0] = '\0'; \
  68.   (blk).len = 0; \
  69. } while(0)
  70. #define StringFree(blk) do { \
  71.   if ((blk).buff != NULL) { \
  72.     freet((blk).buff); \
  73.     (blk).buff = NULL; \
  74.   } \
  75.   (blk).capa = 0; \
  76.   (blk).len = 0; \
  77. } while(0)
  78. #define StringMemcat(blk, str, size) do { \
  79.   StringRoom(blk, size); \
  80.   if ((int)(size) > 0) { \
  81.     memcpy((blk).buff + (blk).len, (str), (size)); \
  82.     (blk).len += (size); \
  83.   } \
  84.   *((blk).buff + (blk).len) = '\0'; \
  85. } while(0)
  86. #define StringAddchar(blk, c) do { \
  87.   char __c = (c); \
  88.   StringMemcat(blk, &__c, 1); \
  89. } while(0)
  90. static void* StringAcquire(String* blk) {
  91.   void* buff = blk->buff;
  92.   blk->buff = NULL;
  93.   blk->capa = 0;
  94.   blk->len = 0;
  95.   return buff;
  96. }
  97. #define StringStrcat(blk, str) StringMemcat(blk, str, ((str) != NULL) ? strlen(str) : 0)
  98. #define StringStrcpy(blk, str) do { \
  99.   StringClear(blk); \
  100.   StringStrcat(blk, str); \
  101. } while(0)
  102.  
  103. /* Tools */
  104.  
  105. static int ehexh(char c) {
  106.   if ((c>='0') && (c<='9')) return c-'0';
  107.   if ((c>='a') && (c<='f')) c-=('a'-'A');
  108.   if ((c>='A') && (c<='F')) return (c-'A'+10);
  109.   return 0;
  110. }
  111.  
  112. static int ehex(char* s) {
  113.   return 16*ehexh(*s)+ehexh(*(s+1));
  114. }
  115.  
  116. static void unescapehttp(char* s, String* tempo) {
  117.   int i;
  118.   for (i=0;i<(int) strlen(s);i++) {
  119.     if (s[i]=='%' && s[i+1]=='%') {
  120.       i++;
  121.       StringAddchar(*tempo, '%');
  122.     } else if (s[i]=='%') {
  123.       char hc;
  124.       i++;
  125.       hc = (char) ehex(s+i);
  126.       StringAddchar(*tempo, (char) hc);
  127.       i++;    // sauter 2 caractΦres finalement
  128.     }
  129.     else if (s[i]=='+') {
  130.       StringAddchar(*tempo, ' ');
  131.     }
  132.     else
  133.       StringAddchar(*tempo, s[i]);
  134.   }
  135. }
  136.  
  137.  
  138. #endif
  139.